home *** CD-ROM | disk | FTP | other *** search
/ Computer Inter@ctive 17 / Computer Interactive cdrom 17 - gen 99.iso / ZDNETIT / CONTENT / SMTPCEMS.ZIP / FROM16._B_ < prev    next >
Encoding:
Text File  |  1998-09-10  |  573 b   |  28 lines

  1. #
  2. # Borland makefile for FROM [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # To use: "make -f from16._B_"
  6. #
  7.  
  8. CCFLAGS = -c
  9.  
  10. from.exe: from.res from.obj about.obj paint.obj str.obj from.def see16.lib
  11.    tlink -c -n -Tw  c0ws @from.rsp,from,from,mathws cws import see16,from,from
  12.    rlink from.res from.exe
  13.  
  14. from.res: from.rc
  15.    brcc from.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. from.obj: from.c see.h
  21.    bcc $(CCFLAGS)  from.c
  22.  
  23. paint.obj: paint.c paint.h
  24.    bcc $(CCFLAGS)  paint.c
  25.  
  26. str.obj: str.c str.h
  27.    bcc $(CCFLAGS)  str.c  
  28.